Skip to main content
Version: 24.03

Operation View

EcoPass KIT Pictotogram

EcoPass KIT

Based on the information provided in this kit, it is possible to run and program against an infrastructure of Digital Product Pass the Catena-X-way. This infrastructure empowers Data Consumers to consume the network's data as agreed with each Data Provider and facilitated by an Operating Company. They run central and decentral services that allow them to discover each other, exchange information and contextualize it according to a standardized semantics.

Service NameDescriptionReference ImplementationStandardized in
Portal/IAMThe central component of the Catena-X network. The Federated IAM from Catena-X is provided by the portal where you can manage the users and roles for the applications.PortalCX - 0015
Discovery FinderA microservice resolving a type of identifiers against a set of BPN-Discovery Servers. Responsible to give the search endpoints for a type of ideclipse-tractusx/sldt-discovery-finderCX - 0053
BPN DiscoveryA microservice resolving a particular assetId against the registered BPN of its owner. Responsible for indicating the BPNs for the IDs registered by the providerseclipse-tractusx/sldt-bpn-discoverCX - 0053
EDC DiscoveryA microservice that resolves a BPN against an EDC endpoint. Responsible for giving the EDC endpoints of one or more BPNseclipse-tractusx/portal-backend - Code ImplementationCX - 0001
Digital Twin RegistryAn exhaustive list of all Submodel Servers, with link to their assets, adhering to the AAS Registry API. Responsible for having the Digital Twins of the provider and indicating the endpoints to the Passport Aspects.eclipse-tractusx/sldt-digital-twin-registryCX - 0002
Submodel ServerThe data source adhering to a subset of the Submodel API as defined in AAS Part-2 3.0. Where the Passport Aspects are storedFA³ST-Framework, Eclipse Basyx, AASX ServerCX - 0002
EDCMain gateaway to the network. In this use case two EDC need be existing, one connected to the Digital Product Pass (EcoPass KIT) [EDC Consumer] and another to the Provider Catena-X components [EDC Provider]eclipse-tractusx/tractusx-edcCX - 0018
Digital Product PassThe [EcoPass KIT] reference implementation. The application is responsible for retrieving the passports and interacting with the services listed above.eclipse-tractusx/digital-product-passCX - 0096

Configuration Guide

In order to get the Digital Product Pass working, an EDC needs to be configured and assets need to be created so that the application is able to perform the communications.

NOTE: This documentation is based on the Digital Product Pass Admin Guide. For the complete information check the CX-0096-TriangleForDigitalProductPass Standard or the Admin Guide

EDC Provider Configuration

When configuring your EDC Provider you need to take into consideration the following guidelines and formats:

NOTE: Please take into consideration following our Postman Collection while setting your EDC Provider

Documentation Description

All variables are written in the following notation: _{{ VARIABLENAME }}****

All the configurations are in JSON notation and follow the EDC Configuration from Catena-X and the Eclipse Foundation.

Asset Configuration

When configurating your EDC provider you will be able to set some assets which refer to a certain endpoint.

INFO: All public assets must be registered in a SubModel from a Digital Twin in the Digital Twin Registry.

Variables

NameDescriptionExample Value
AssetIdCombination of Digital Twin and Sub Model UUIDsExample value for asset: urn:uuid:0ec8cf2b-f58e-3f13-b5ef-e7dd01d15b19
Example value for registry: digital-twin-registry
AssetTypeThe type of the AssetExample value for asset: Asset
Example value for registry: data.core.digitalTwinRegistry
DescriptionSimple description of the assetBattery Passport Test Data
DataProviderEndpointUrlURL to the endpoint which stores and serves the data, basically a Database that retrieves plain text/json data for a certain APIExample value for asset: https://submodel.server.url/{{path}}/{{DigitalTwinSubmodelId}}
Example value for registry: https://dpp-base.url/semantics/registry/api/v3.0
DigitalTwinIdId from the Digital Twinurn:uuid:de98db6e-8e05-5d8e-8ae8-9f702cf5c396
DigitalTwinSubmodelIdSub Model Id registered in the Digital Twin Registry

Format and Fields

{
"@context": {},
"asset": {
"@type": "{{AssetType}}",
"@id": "{{AssetId}}",
"properties": {
"description": "{{Description}}"
"contenttype": "application/json"
}
},
"dataAddress": {
"@type": "DataAddress",
"type": "HttpData",
"proxyPath": "true",
"proxyBody": "true",
"proxyMethod": "true",
"proxyQueryParams": "true",
"baseUrl": "{{DataProviderEndpointUrl}}"
}
}

When configurating your EDC provider you will be able to set some assets which refer to a certain endpoint.

Policies Configuration

Policies are important for configuration the access, prohibitions, obligations and permissions to certain assets.

A policy can have more and less configurations, depending on the restrictions you want to give to each asset.

Here we specify a simple policy with just the USAGE permission, so we are able to retrieve the whole asset without obligations and prohibitions.

Usage Policies

Policy NameDescription
Usage Permission PolicyIn order to use/access the assets from the EDC Provider the Usage Policy is required

NOTE: At the moment only Usage Permission Policies are assigned to assets, however restriction policies could be also configured if it is required for a specific use case.

Variables

NameDescriptionExample Value
PolicyIdUUID that identifies the policy in the EDC Connectorad8d2c57-cf32-409c-96a8-be59675b6ae5
PermissionTypeDID Permission TypePolicyDefinitionRequestDto
PermissionActionTypeDefines the action allowed when the permission is assigned to an asset. In case of the usage policy the value "USE" is necessary"USE"
BPNConsumer's Business Partner NumberBPNL000000000000

Format and Fields

To allow partners to access information use this policy with the BPN number included:

{
"@context": {
"odrl": "http://www.w3.org/ns/odrl/2/"
},
"@type": "{{PermissionType}}",
"@id": "{{PolicyId}}",
"policy": {
"@type": "Policy",
"odrl:permission" : [{
"odrl:action": "{{PermissionActionType}}",
"odrl:constraint": {
"odrl:constraint": {
"@type": "LogicalConstraint",
"odrl:or": [
{
"@type": "Constraint",
"odrl:leftOperand": "BusinessPartnerNumber",
"odrl:operator": "EQ",
"odrl:rightOperand": "{{BPN}}"
}
]
}
}
}]
}
}

For framework agreement and membership in Catena-X configure this policy:

{
"@context": {
"odrl": "http://www.w3.org/ns/odrl/2/"
},
"@type": "{{PermissionType}}",
"@id": "{{PolicyId}}",
"policy": {
"@type": "Policy",
"odrl:permission" : [
{
"odrl:action":"{{PermissionActionType}}",
"odrl:constraint": {
"@type": "LogicalConstraint",
"odrl:and": [
{
"@type": "Constraint",
"odrl:leftOperand": "Membership",
"odrl:operator": {
"@id": "odrl:eq"
},
"odrl:rightOperand": "active"
},
{
"@type": "Constraint",
"odrl:leftOperand": "FrameworkAgreement.sustainability",
"odrl:operator": {
"@id": "odrl:eq"
},
"odrl:rightOperand": "active"
}
]
}
}
]
}
}

Contract Definition Configuration

Contract definitions allow us to expose the assets and link them to a contract policy and an access policy.

INFO: Remember that all policies and assets you bind to a contract must be defined in the same EDC Connector and linked through their ID in the configuration from the contract.

Variables

NameDescriptionExample Value
ContractDefinitionIdUUID that identifies the policy in the EDC Connector76b50bfc-ec19-457f-9911-a283f0d6d0df
AssetIdCombination of Digital Twin and Sub Model UUIDsExample value for asset: urn:uuid:0ec8cf2b-f58e-3f13-b5ef-e7dd01d15b19
Example value for registry: digital-twin-registry
AccessPolicyIdPolicy that allows/restricts/enforces asset access constraintsad8d2c57-cf32-409c-96a8-be59675b6ae5
ContractPolicyIdPolicy that allows/restricts/enforces contract constraintsad8d2c57-cf32-409c-96a8-be59675b6ae5

Format and Fields

INFO: For testing purposes and in order to ease the access to your assets we are going to define the same policy as accessPolicy and as contractPolicy. However, you are recommended to configure two separated policies and specify them adapting each one of them to your specific needs.

{
"@context": {},
"@id": "{{ContractDefinitionId}}",
"@type": "ContractDefinition",
"accessPolicyId": "{{AccessPolicyId}}",
"contractPolicyId": "{{ContractPolicyId}}",
"assetsSelector" : {
"@type" : "CriterionDto",
"operandLeft": "https://w3id.org/edc/v0.0.1/ns/id",
"operator": "=",
"operandRight": "{{AssetId}}"
}
}

Digital Twin Registration

Once you finish the configuration, to make the endpoint public configure your digital twin in the following way:

INFO: You need to be able to request tokens for the Catena-X Central IAM in order to configure Digital Twins in the Registry.

Variables

NameDescriptionExample Value
DigitalTwinIdManually generated DID that contains a UUID32aa72de-297a-4405-9148-13e12744028a
DigitalTwinSubmodelIdSub Model Id registered in the Digital Twin Registry699f1245-f57e-4d6b-acdb-ab763665554a
PartInstanceIdBattery passport DMC code or the part instance IdX123456789012X12345678901234566
manufacturerPartIdThe Part Id given by the manufacturer, it idenfies the type of the productXYZ78901
EDCProviderUrlURL to the endpoint which contains the EDC Providerhttps://edc.control.plane/
BPNOPTIONAL: The endpoint address can include a BPN number, which shall lead to the EDC Provider, and return the contracts when called from an EDC ConsumerBPNL000000000000
SubmodelIdShortEXACT STRING REQUIRED: The submodel id of the battery passports needs to be exactly the string: "batteryPass"batteryPass
BammModelVersionIdThe semantic version of the asset passport model, currently the version v4.0.0 is usedurn:samm:io.catenax.battery.battery_pass:4.0.0#BatteryPass

INFO: It is important that the "SubmodelIdShort" is set in the correct format and that the EDCProviderUrl points to an valid EDC Provider, that provides valid contracts configured in the structure defined here.

Format and Fields

{
"description": [
{
"language": "en",
"text": "Battery Passport shell descriptor"
}
],
"idShort": "Battery_{{PartInstanceId}}",
"id": "{{DigitalTwinId}}",
"specificAssetIds": [
{
"name": "manufacturerPartId",
"value": "{{manufacturerPartId}}",
"externalSubjectId": {
"type": "ExternalReference",
"keys": [
{
"type": "GlobalReference",
"value": "{{BPN}}"
},
{
"type": "GlobalReference",
"value": "PUBLIC_READABLE"
}
]
}
},
{
"name": "partInstanceId",
"value": "{{PartInstanceId}}",
"externalSubjectId": {
"type": "ExternalReference",
"keys": [
{
"type": "GlobalReference",
"value": "{{BPN of partner}}"
}
]
}
},
{
"key" : "assetLifecyclePhase",
"value": "AsBuilt"
}
],
"submodelDescriptors":[
{
"endpoints": [
{
"interface": "SUBMODEL-3.0",
"protocolInformation": {
"href": "https://edc.data.plane/{{path}}/urn:uuid:777a3f0a-6d29-4fcd-81ea-1c27c1b870cc",
"endpointProtocol": "HTTP",
"endpointProtocolVersion": [
"1.1"
],
"subprotocol": "DSP",
"subprotocolBody": "{{body with information required by subprotocol}}",
"subprotocolBodyEncoding": "plain",
"securityAttributes": [
{
"type": "NONE",
"key": "NONE",
"value": "NONE"
}
]
}
}
],
"idShort": "batteryPass",
"id": "urn:uuid:777a3f0a-6d29-4fcd-81ea-1c27c1b870cc",
"semanticId": {
"type": "ExternalReference",
"keys": [
{
"type": "Submodel",
"value": "urn:bamm:io.catenax.battery.battery_pass:3.0.1#BatteryPass"
}
]
},
"description": [
{
"language": "en",
"text": "Battery Passport Submodel"
}
],
{
"endpoints": [
{
"interface": "SUBMODEL-3.0",
"protocolInformation": {
"href": "https://edc.data.plane/{{path}}/urn:uuid:777a3f0a-6d29-4fcd-81ea-1c27c1b870cc",
"endpointProtocol": "HTTP",
"endpointProtocolVersion": [
"1.1"
],
"subprotocol": "DSP",
"subprotocolBody": "id=urn:uuid:3e4a5957-f226-478a-ab18-79ced49d6195;dspEndpoint=https://edc.control.plane/",
"subprotocolBodyEncoding": "plain",
"securityAttributes": [
{
"type": "NONE",
"key": "NONE",
"value": "NONE"
}
]
}
}
],
"idShort": "digitalProductPass",
"id": "urn:uuid:777a3f0a-6d29-4fcd-81ea-1c27c1b870cc",
"semanticId": {
"type": "ExternalReference",
"keys": [
{
"type": "Submodel",
"value": "urn:samm:io.catenax.generic.digital_product_passport:3.0.0#DigitalProductPassport"
}
]
},
"description": [
{
"language": "en",
"text": "Digital Product Passport Submodel"
}
]
}
}
]
}

NOTE: The BPN number is not required for the configuration of the endpoint, just make sure that the host is pointing to the EDC Provider.

Digital Twin Registry Configuration

When configuring the digital twin registry behind the EDC Provider you should follow this EDC Registration guidelines:

Variables

NameDescriptionExample Value
registryUrlThe base url from the digital twin registryhttps://dpp-base.url/semantics/registry
registryNameThe name from the asset for the registrydigital-twin-registry

Format and Fields

{
"@context": {},
"asset": {
"@type": "data.core.digitalTwinRegistry",
"@id": "{{registryName}}",
"properties": {
"description": "Digital Twin Registry",
"contenttype": "application/json"
}
},
"dataAddress": {
"@type": "DataAddress",
"type": "HttpData",
"proxyPath": "true",
"proxyBody": "true",
"proxyMethod": "true",
"proxyQueryParams": "true",
"baseUrl": "{{registryUrl}}"
}
}

Item Relationship Service Integration

In order to enable the drill down in passports retrieved by the Digital Product Pass Application you will need to first deploy the IRS Item Relationship Service and connect it to the Digital Product Pass application.

For creating relationships between the digital twins register "singleLevelBomAsBuilt" and "singleLevelBomAsUsage" aspects which can be found here: SingleLevelBomAsBuilt and SingleLevelUsageAsBuilt

IMPORTANT!: The proxy configuration needs to be enabled exactly like it is configured in the dataAdress property above.

The rest of the assets can be configured in the same way as the normal assets.

NOTICE

This work is licensed under the CC-BY-4.0.

  • SPDX-License-Identifier: CC-BY-4.0
  • SPDX-FileCopyrightText: 2023, 2024 ZF Friedrichshafen AG
  • SPDX-FileCopyrightText: 2023, 2024 Robert Bosch GmbH
  • SPDX-FileCopyrightText: 2023, 2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
  • SPDX-FileCopyrightText: 2023, 2024 T-Systems International GmbH
  • SPDX-FileCopyrightText: 2023, 2024 SAP SE
  • SPDX-FileCopyrightText: 2023, 2024 CGI Deutschland B.V. & Co. KG
  • SPDX-FileCopyrightText: 2023, 2024 Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V. für ihre Institute IPK und IPK
  • SPDX-FileCopyrightText: 2023, 2024 BASF SE
  • SPDX-FileCopyrightText: 2023, 2024 Henkel AG & Co. KGaA
  • SPDX-FileCopyrightText: 2023, 2024 Contributors to the Eclipse Foundation
  • Source URL: https://github.com/eclipse-tractusx/digital-product-pass